.product-view .slide-image * {
    box-sizing: border-box;
  }
  
  /* Position the image container (needed to position the left and right arrows) */
  .product-view .slide-image .container-product {
    position: relative;
  }
  
  /* Hide the images by default */
  .product-view .slide-image .my-slides-product {
    display: none;
    height: 250px;
    overflow: hidden;
    width: 100%;
  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .product-view .slide-image .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .product-view .slide-image .prev,
  .product-view .slide-image .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #d5cece;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .product-view .slide-image .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .product-view .slide-image .prev:hover,
  .product-view .slide-image .next:hover {
    background-color: rgba(153, 150, 150, 0.086);
  }
  
  /* Number text (1/3 etc) */
  .product-view .slide-image .numbertext-product {
    color: #d5cece;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  .product-view .slide-image .caption-container {
    text-align: center;
    background-color: #efebebc7;
    padding: 1px 16px;
    color: white;
    margin: 0px;
  }
  
  .product-view .slide-image .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .product-view .slide-image .column {
    /*float: left;*/
    width: 16.66%;
    height: 100%;
  }
  
  /* Add a transparency effect for thumnbail images */
  .product-view .slide-image .demo-product {
    opacity: 0.6;
    max-height: 100%;
    max-width: 100%;
  }
  
  .product-view .slide-image .active,
  .product-view .slide-image .demo-product:hover {
    opacity: 1;
  }

  .product-view .img-slide {
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .product-view .wrap-img-slide {
    width:100%;
    height:100%;
    display:flex;
    align-items: center;
    justify-content: center;
  }

  .product-view .view-imgage-thumbnail {
    height: 60px;
    background-color: #e5e5e754;
    display: flex;
    /* align-items: start; */
    flex-direction: row;
    /* padding: 10px; */
    margin: 0px;
  }